实例
六个不同的HTML标题
1 2 3 4 5 6
| <h1>这是标题1</h1> <h2>这是标题2</h2> <h3>这是标题3</h3> <h4>这是标题4</h4> <h5>这是标题5</h5> <h6>这是标题6</h6>
|
定义和用法
<h>
标签可定义标题。<h1>
定义最大的标题。<h6>
定义最小的标题。
标准属性
1
| id, class, title, style, dir, lang, xml:lang
|
事件属性
1 2
| onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup
|
例子
例子1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <html> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> <p>请仅仅把标题标签用于标题文本。不要仅仅为了产生粗体文本而使用它们。请使用其它标签或 CSS 代替。 </p> </body> </html>
|
运行结果如下:
1 2 3 4 5 6 7 8 9 10 11 12 13
| This is heading 1 This is heading 2 This is heading 3 This is heading 4 This is heading 5 This is heading 6 请仅仅把标题标签用于标题文本。不要仅仅为了产生粗体文本而使用它们。请使用其它标签或 CSS 代替。
|
例子2
1 2 3 4 5 6 7 8 9 10 11 12 13
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <body> <h1 align="center">This is heading 1</h1> <p>上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。</p> </body> </html>
|
运行结果如下:
1 2 3
| This is heading 1 上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。
|